home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 36 / Amiga Format CD36 (1999-01-22)(Future Publishing)(GB)[!][issue 1999-02].iso / -seriously_amiga- / -commercial- / fantasticdreams / fantasticdreams5 / install_fantasticdreams < prev    next >
Text File  |  1998-12-07  |  15KB  |  761 lines

  1. ; $VER: FantasticDreams_Install 1.100 (09.11.98)
  2. ; Script to install FantasticDreams Version 1.1
  3.  
  4. (complete 0)
  5. (user 1)
  6.  
  7. ;=============================================================================
  8. ; English strings
  9.  
  10. (set default_lang 4)
  11.  
  12. (set #bad-kick "FantasticDreams needs Amiga-OS 3.0 or higher")
  13.  
  14. (set SelectDir1Msg
  15.      (cat "Please select a directory\nto install FantasticDreams in"
  16.      )
  17. )
  18.  
  19. (Set ProgMsg
  20.      (cat "Which parts should i install?"
  21.      )
  22. )
  23.  
  24.  (set Choice1Msg "FantasticDreams Mainprogram (8 MB)")
  25.  (set Choice2Msg "FantasticDreams Tools (1 MB)")
  26.  (set Choice3Msg "FantasticDreams Instruction (1.3 MB)")
  27.  
  28.  (set FPU1Msg "None")
  29.  (set FPU2Msg "Yes, this machine is with FPU")
  30.  
  31.  (set CPU1Msg "MC68000")
  32.  (set CPU2Msg "MC68030")
  33.  (set CPU3Msg "MC68040")
  34.  (set CPU4Msg "MC68060")
  35.  (set CPU5Msg "PPC603/604")
  36.  
  37.  (set CPUMsg "What CPU does the machine have that you are installing FantasticDreams Pro?")
  38.  
  39.  (set UpDategraf "Checking and updating graffiti.library, if needed...")
  40.  (set UpDatejpeg "Checking and updating jpeg2mov.library, if needed...")
  41.  
  42.  (set InstallFantasticDreamsProg "Installing FantasticDreams professional main program...")
  43.  (set InstallLoader "Installing loader...")
  44.  (set InstallSaver "Installing saver...")
  45.  (set InstallOperator "Installing Operator files...")
  46.  (set InstallViewer "Installing viewers...")
  47.  (set InstallGuide "Installing Guide-File...")
  48.  (set InstallTools "Installing Tools...")
  49.  (set InstallBG "Installing Background...")
  50.  (set InstallImages "Installing Images...")
  51.  
  52.  (set AssignAdd1
  53.      (cat "\nAdding the FantasticDreams assignment to s:user-startup - it currently looks like this:\n\n%s\n\n"
  54.           (cat "assign FantasticDreams: " FantasticDreamsDir)
  55.      )
  56. )
  57.  
  58. ;=============================================================================
  59. ; German strings
  60.  
  61. (if   (= @language "deutsch")
  62. (
  63.  (set default_lang 2)
  64.  
  65.  (set #bad-kick "FantasticDreams benötigt mindestens Amiga-OS 3.0 oder höher")
  66.  
  67.  (set SelectDir1Msg
  68.       (cat "Wählen Sie ein Verzeichnis, wo Sie FantasticDreams "
  69.            "installieren möchten. Ein Verzeichnis mit den "
  70.            "Namen FantasticDreams wird automatisch angelegt!"
  71.       )
  72.  )
  73.  
  74.  (Set ProgMsg
  75.       (cat "\nWelche Dateien sollen installiert werden?\n"
  76.       )
  77.  )
  78.  
  79.  (set Choice1Msg "FantasticDreams Hauptprogramm (ca. 8 MB)")
  80.  (set Choice2Msg "FantasticDreams Tools (ca. 1 MB)")
  81.  (set Choice3Msg "FantasticDreams Anleitung (ca. 1.3 MB)")
  82.  
  83.  (set FPU1Msg "Keine vorhanden")
  84.  (set FPU2Msg "ja, FPU vorhanden")
  85.  
  86.  (set CPU1Msg "MC68000")
  87.  (set CPU2Msg "MC68030")
  88.  (set CPU3Msg "MC68040")
  89.  (set CPU4Msg "MC68060")
  90.  (set CPU5Msg "PPC603/604")
  91.  
  92.  (set CPUMsg "Welchen Prozessor besitzt der Computer, auf dem Sie FantasticDreams installieren möchten?")
  93.  
  94.  (set UpDategraf "Prüfe und Erneuere die graffiti.library, wenn nötig...")
  95.  (set UpDatejpeg "Prüfe und Erneuere die jpeg2mov.library, wenn nötig...")
  96.  
  97.  (set InstallFantasticDreamsProg "Installiere FantasticDreams Version 2.0 Hauptprogramm...")
  98.  (set InstallLoader "Installiere Lademodule...")
  99.  (set InstallSaver "Installiere Speichermodule...")
  100.  (set InstallOperator "Installiere Bildbearbeitungsmodule...")
  101.  (set InstallViewer "Installiere Anzeigemodule...")
  102.  (set InstallGuide "Installiere Guide-Datei...")
  103.  (set InstallTools "Installiere Werkzeuge...")
  104.  (set InstallBG "Installiere Hintergrund...")
  105.  (set InstallImages "Installing Bilder...")
  106.  
  107.  (set AssignAdd1
  108.       (cat "\nFüge FantasticDreams Zuweisung an s:user-startup - Es würde wie folgt Aussehen:\n\n%s\n\n"
  109.            (cat "assign FantasticDreams: " FantasticDreamsDir)
  110.       )
  111.  )
  112. )
  113. )
  114.  
  115. (if (> (* 39 65536) (getversion "exec.library" (resident)))
  116.         (abort #bak-kick)
  117. )
  118.  
  119.  
  120. (welcome)
  121. (set old_level @user-level)
  122.  
  123. (user 2)
  124.  
  125. (if ( < (exists "FantasticDreams:" (noreq)) 2)
  126.   (
  127.    (set target (askdir
  128.           (prompt SelectDir1Msg)
  129.           (help #which-dir-help)
  130.           (default "SYS:")
  131.    ))
  132.    (set FantasticDreamsDir        (tackon target "FantasticDreams"))
  133.   )
  134. )
  135.  
  136. (if (exists "FantasticDreams:" (noreq))
  137.   (
  138.    (set target "FantasticDreams:")
  139.    (set FantasticDreamsDir "FantasticDreams:")
  140.   )
  141. )
  142.  
  143. (user old_level)
  144.  
  145. (set WAS
  146.       (askoptions
  147.       (prompt ProgMsg)
  148.       (help   @askchoice-help)
  149.       (choices Choice1Msg Choice2Msg Choice3Msg)
  150.       (default 7)
  151.       )
  152. )
  153.  
  154. (set MainDirPPC        (tackon FantasticDreamsDir "MainPPC"))
  155. (set LoaderDir        (tackon FantasticDreamsDir "Loader"))
  156. (set LoaderDirPPC    (tackon FantasticDreamsDir "LoaderPPC"))
  157. (set OperatorDir    (tackon FantasticDreamsDir "Operator"))
  158. (set OperatorDirPPC    (tackon FantasticDreamsDir "OperatorPPC"))
  159. (set ViewerDir        (tackon FantasticDreamsDir "Viewer"))
  160. (set SaverDir        (tackon FantasticDreamsDir "Saver"))
  161. (set ToolsDir        (tackon FantasticDreamsDir "Tools"))
  162. (set DocDir        (tackon FantasticDreamsDir "Docs"))
  163. (set ImagesDir        (tackon FantasticDreamsDir "Images"))
  164. (set BackgroundDir    (tackon FantasticDreamsDir "Background"))
  165.  
  166. (If (IN WAS 0)
  167.  (
  168.   (set CPU
  169.       (askchoice
  170.       (prompt CPUMsg)
  171.       (help   @askchoice-help)
  172.       (choices CPU1Msg CPU2Msg CPU3Msg CPU4Msg CPU5Msg)
  173.       (default 1)
  174.       )
  175.   )
  176.  
  177.   (set FPU
  178.       (askchoice
  179.       (prompt FPUMsg)
  180.       (help   @askchoice-help)
  181.       (choices FPU1Msg FPU2Msg)
  182.       (default 1)
  183.       )
  184.   )
  185.  
  186.   (if ( < (exists FantasticDreamsDir (noreq) ) 2)
  187.     (makedir FantasticDreamsDir
  188.         (prompt "Creating FantasticDreams directory...")
  189.         (help @makedir-help)
  190.         (infos)
  191.     )
  192.   )
  193.  
  194.   (complete 10)
  195.  
  196.   (if ( < (exists LoaderDir (noreq) ) 2)
  197.     (makedir LoaderDir
  198.         (prompt "Creating Loader directory...")
  199. ;        (help @makedir-help)
  200.     )
  201.   )
  202.  
  203.   (complete 11)
  204.  
  205.   (if ( < (exists ViewerDir (noreq) ) 2)
  206.     (makedir ViewerDir
  207.         (prompt "Creating Viewer directory...")
  208. ;        (help @makedir-help)
  209.     )
  210.   )
  211.  
  212.   (complete 12)
  213.  
  214.   (if ( < (exists BackgroundDir (noreq) ) 2)
  215.     (makedir BackgroundDir
  216.         (prompt "Creating Background directory...")
  217. ;        (help @makedir-help)
  218.     )
  219.   )
  220.  
  221.   (complete 14)
  222.  
  223.   (if ( < (exists SaverDir (noreq) ) 2)
  224.     (makedir SaverDir
  225.         (prompt "Creating Saver directory...")
  226. ;        (help @makedir-help)
  227.     )
  228.   )
  229.  
  230.   (complete 15)
  231.  
  232.   (if ( < (exists ToolsDir (noreq) ) 2)
  233.     (makedir ToolsDir
  234.         (prompt "Creating Tools directory...")
  235. ;        (help @makedir-help)
  236.     )
  237.   )
  238.  
  239.   (complete 16)
  240.  
  241.   (if ( < (exists OperatorDir (noreq) ) 2)
  242.     (makedir OperatorDir
  243.         (prompt "Creating Operator directory...")
  244. ;        (help @makedir-help)
  245.     )
  246.   )
  247.  
  248.   (complete 17)
  249.  
  250.   (if ( < (exists ImagesDir (noreq) ) 2)
  251.     (makedir ImagesDir
  252.         (prompt "Creating Images directory...")
  253. ;        (help @makedir-help)
  254.     )
  255.   )
  256.  
  257.   (complete 18)
  258.  
  259. (copyfiles
  260.     (prompt "Installing Font files...")
  261.     (help @copyfiles-help)
  262.     (source "FantasticDreamsCD:Fonts/")
  263.     (dest "FONTS:")
  264.     (all)
  265.     (confirm)
  266. )
  267.  
  268.  
  269. (If (IN WAS 2)
  270.  (
  271.  
  272.   (complete 20)
  273.  
  274.   (if (= default_lang 4)
  275.   (
  276.       (copyfiles
  277.         (prompt "Copy FantasticDreams...")
  278.         (help @copyfiles-help)
  279.         (source "FantasticDreamsCD:FantasticDreamsEnglish")
  280.         (dest "ram:")
  281.                 (newname "FantasticDreams")
  282.         (confirm)
  283.           )
  284.  
  285.     (complete 21)
  286.  
  287.     (run "c/Registration"
  288.      (prompt "FantasticDreams registration...")
  289.      (help "Keine Hilfe verfügbar.")
  290.     )
  291.  
  292.     (run "c/spatch -oram:FantasticDreamsNew -pPatchFiles/FantasticDreamsE.pch ram:FantasticDreams"
  293.     (prompt "FantasticDreams updating, please wait...")
  294.     (help "Keine Hilfe verfügbar.")
  295.     )
  296.  
  297.   ))
  298.  
  299.   (if (= default_lang 2)
  300.    (
  301.       (copyfiles
  302.         (prompt "Kopiere FantasticDreams...")
  303.         (help @copyfiles-help)
  304.         (source "FantasticDreamsCD:FantasticDreamsDeutsch")
  305.         (dest "ram:")
  306.                 (newname "FantasticDreams")
  307.         (confirm)
  308.           )
  309.  
  310.     (complete 21)
  311.  
  312.     (run "c/Registrierung"
  313.      (prompt "FantasticDreams registrieren...")
  314.      (help "Keine Hilfe verfügbar.")
  315.     )
  316.  
  317.     (run "c/spatch -oram:FantasticDreamsNew -pPatchFiles/FantasticDreamsD.pch ram:FantasticDreams"
  318.     (prompt "FantasticDreams updating, bitte warten...")
  319.     (help "Keine Hilfe verfügbar.")
  320.     )
  321.  
  322.    )
  323.   )
  324.  )
  325. )
  326.  
  327.   (complete 22)
  328.  
  329.   (copyfiles
  330.     (prompt "Installing FantasticDreams main program...")
  331.     (help @copyfiles-help)
  332.     (source "ram:FantasticDreamsNew")
  333.     (dest FantasticDreamsDir)
  334.     (newname "FantasticDreams")
  335.     (confirm)
  336.   )
  337.  
  338.   (complete 24)
  339.  
  340.   (run "FantasticDreamsCD:c/delete ram:FantasticDreams"
  341.        (prompt "Delete ram:FantasticDreams...")
  342.        (help "Keine Hilfe verfügbar.")
  343.   )
  344.  
  345.   (complete 25)
  346.  
  347.   (run "FantasticDreamsCD:c/delete ram:FantasticDreamsNew"
  348.        (prompt "Delete ram:FantasticDreamsNew...")
  349.        (help "Keine Hilfe verfügbar.")
  350.   )
  351.  
  352.   (complete 26)
  353.  
  354.   (copyfiles
  355.     (prompt "Installing FantasticDreams Icon...")
  356.     (help @copyfiles-help)
  357.     (source "FantasticDreamsCD:FantasticDreams.info")
  358.     (dest FantasticDreamsDir)
  359.     (confirm)
  360.   )
  361.  
  362.  
  363. (If (IN WAS 2)
  364.  (
  365.  
  366.   (complete 28)
  367.  
  368.   (if (= default_lang 4)
  369.   (
  370.  
  371.       (copyfiles
  372.         (prompt "Installing Background...")
  373.         (help @copyfiles-help)
  374.         (source "FantasticDreamsCD:BackgroundEnglish/")
  375.         (dest BackgroundDir)
  376.         (all)
  377.         (confirm)
  378.       )
  379.  
  380.   ))
  381.  
  382.   (if (= default_lang 2)
  383.    (
  384.  
  385.       (copyfiles
  386.         (prompt "Installiere Hintergrund...")
  387.         (help @copyfiles-help)
  388.         (source "FantasticDreamsCD:BackgroundDeutsch/")
  389.         (dest BackgroundDir)
  390.         (all)
  391.         (confirm)
  392.       )
  393.    )
  394.   )
  395.  )
  396. )
  397.  
  398.   (complete 39)
  399.  
  400. (If (= CPU 0)
  401.  (
  402.   (copyfiles
  403.     (prompt "Installing Operator files...")
  404.     (help @copyfiles-help)
  405.     (source "FantasticDreamsCD:Operator68k/")
  406.     (dest OperatorDir)
  407.     (all)
  408.     (confirm)
  409.   )
  410.  
  411.   (copyfiles
  412.     (prompt "Installing loader...")
  413.     (help @copyfiles-help)
  414.     (source "FantasticDreamsCD:Loader68000/")
  415.     (dest LoaderDir)
  416.     (all)
  417.     (confirm)
  418.   )
  419.  
  420.   (copyfiles
  421.     (prompt "Installing loader...")
  422.     (help @copyfiles-help)
  423.     (source "PatchFiles/Loader68k/")
  424.     (dest LoaderDir)
  425.     (all)
  426.     (confirm)
  427.   )
  428.  )
  429. )
  430.  
  431. (If (= CPU 1)
  432.  (
  433.   (copyfiles
  434.     (prompt "Installing Operator files...")
  435.     (help @copyfiles-help)
  436.     (source "FantasticDreamsCD:Operator68k/")
  437.     (dest OperatorDir)
  438.     (all)
  439.     (confirm)
  440.   )
  441.  
  442.   (copyfiles
  443.     (prompt "Installing loader...")
  444.     (help @copyfiles-help)
  445.     (source "FantasticDreamsCD:Loader68030/")
  446.     (dest LoaderDir)
  447.     (all)
  448.     (confirm)
  449.   )
  450.  
  451.   (copyfiles
  452.     (prompt "Installing loader...")
  453.     (help @copyfiles-help)
  454.     (source "PatchFiles/Loader68k/")
  455.     (dest LoaderDir)
  456.     (all)
  457.     (confirm)
  458.   )
  459.  )
  460. )
  461.  
  462. (If (= CPU 2)
  463.  (
  464.   (copyfiles
  465.     (prompt "Installing Operator files...")
  466.     (help @copyfiles-help)
  467.     (source "FantasticDreamsCD:Operator68k/")
  468.     (dest OperatorDir)
  469.     (all)
  470.     (confirm)
  471.   )
  472.   (copyfiles
  473.     (prompt "Installing loader...")
  474.     (help @copyfiles-help)
  475.     (source "FantasticDreamsCD:Loader68040/")
  476.     (dest LoaderDir)
  477.     (all)
  478.     (confirm)
  479.   )
  480.  
  481.   (copyfiles
  482.     (prompt "Installing loader...")
  483.     (help @copyfiles-help)
  484.     (source "PatchFiles/Loader68k/")
  485.     (dest LoaderDir)
  486.     (all)
  487.     (confirm)
  488.   )
  489.  )
  490. )
  491.  
  492. (If (= CPU 3)
  493.  (
  494.   (copyfiles
  495.     (prompt "Installing Operator files...")
  496.     (help @copyfiles-help)
  497.     (source "FantasticDreamsCD:Operator68k/")
  498.     (dest OperatorDir)
  499.     (all)
  500.     (confirm)
  501.   )
  502.  
  503.   (copyfiles
  504.     (prompt "Installing loader...")
  505.     (help @copyfiles-help)
  506.     (source "FantasticDreamsCD:Loader68060/")
  507.     (dest LoaderDir)
  508.     (all)
  509.     (confirm)
  510.   )
  511.  
  512.   (copyfiles
  513.     (prompt "Installing loader...")
  514.     (help @copyfiles-help)
  515.     (source "PatchFiles/Loader68k/")
  516.     (dest LoaderDir)
  517.     (all)
  518.     (confirm)
  519.   )
  520.  )
  521. )
  522.  
  523. (If (= CPU 4)
  524.  (
  525.  
  526.   (complete 40)
  527.  
  528.   (if ( < (exists OperatorDirPPC (noreq) ) 2)
  529.     (makedir OperatorDirPPC
  530.         (prompt "Creating OperatorPPC directory...")
  531. ;        (help @makedir-help)
  532.     )
  533.   )
  534.   (complete 41)
  535.  
  536.  
  537.   (if ( < (exists MainDirPPC (noreq) ) 2)
  538.     (makedir MainDirPPC
  539.         (prompt "Creating MainPPC directory...")
  540. ;        (help @makedir-help)
  541.     )
  542.   )
  543.  
  544.   (copyfiles
  545.     (prompt "Installing loader...")
  546.     (help @copyfiles-help)
  547.     (source "PatchFiles/Loader604/")
  548.     (dest LoaderDir)
  549.     (all)
  550.     (confirm)
  551.   )
  552.  
  553.   (copyfiles
  554.     (prompt "Installing Operator files...")
  555.     (help @copyfiles-help)
  556.     (source "FantasticDreamsCD:Operator604/")
  557.     (dest OperatorDir)
  558.     (all)
  559.     (confirm)
  560.   )
  561.  
  562.   (copyfiles
  563.     (prompt "Installing operatorppc...")
  564.     (help @copyfiles-help)
  565.     (source "FantasticDreamsCD:OperatorPPC/")
  566.     (dest OperatorDirPPC)
  567.     (all)
  568.     (confirm)
  569.   )
  570.   (copyfiles
  571.     (prompt "Installing mainppc...")
  572.     (help @copyfiles-help)
  573.     (source "PatchFiles/Main.elf")
  574.     (dest MainDirPPC)
  575.     (confirm)
  576.   )
  577.  
  578.  )
  579. )
  580.  
  581.   (complete 43)
  582.  
  583.   (copyfiles
  584.     (prompt "Installing saver...")
  585.     (help @copyfiles-help)
  586.     (source "FantasticDreamsCD:Saver/")
  587.     (dest SaverDir)
  588.     (all)
  589.     (confirm)
  590.   )
  591.  
  592. (IF (= FPU 1)
  593.  (
  594.   (complete 45)
  595.  
  596.   (copyfiles
  597.     (prompt "Installing OperatorFPU files...")
  598.     (help @copyfiles-help)
  599.     (source "FantasticDreamsCD:OperatorFPU/")
  600.     (dest OperatorDir)
  601.     (all)
  602.     (confirm)
  603.   )
  604.  )
  605. )
  606.  
  607.   (complete 50)
  608.  
  609.   (copyfiles
  610.     (prompt "Installing viewers...")
  611.     (help @copyfiles-help)
  612.     (source "FantasticDreamsCD:Viewer/")
  613.     (dest ViewerDir)
  614.     (all)
  615.     (confirm)
  616.   )
  617.  
  618.   (complete 68)
  619.  
  620.   (if ( < (exists "FantasticDreams:" (noreq)) 2)
  621.    (
  622.     (startup "FantasticDreams"
  623.     (prompt ("\nAdding the FantasticDreams assignment to s:user-startup - it currently looks like this:\n\n%s\n\n" (cat "assign FantasticDreams: " FantasticDreamsDir) ) )
  624.     (help @startup-help)
  625.     (command (cat "assign FantasticDreams: " FantasticDreamsDir))
  626.     )
  627.     (run "FantasticDreamsCD:c/assign FantasticDreams: " FantasticDreamsDir
  628.      (prompt "Assign FantasticDreams...")
  629.      (help "Keine Hilfe verfügbar.")
  630.     )
  631.    )
  632.   )
  633.  )
  634. )
  635.  
  636.   (complete 70)
  637.  
  638. (If (IN WAS 1)
  639.  (
  640.  
  641.   (copyfiles
  642.     (prompt "Installing Tools...")
  643.     (help @copyfiles-help)
  644.     (source "FantasticDreamsCD:Tools/")
  645.     (dest ToolsDir)
  646.         (all)
  647.         (infos)
  648.     (confirm)
  649.   )
  650.  
  651.  
  652.   (complete 72)
  653.  
  654.   (copyfiles
  655.     (prompt "Installing Tools...")
  656.     (help @copyfiles-help)
  657.     (source "PatchFiles/ConvertStudio")
  658.     (dest ToolsDir)
  659.     (confirm)
  660.   )
  661.  
  662.   (complete 73)
  663.  
  664.   (copyfiles
  665.     (prompt "Installing Tools...")
  666.     (help @copyfiles-help)
  667.     (source "PatchFiles/FXStudio")
  668.     (dest ToolsDir)
  669.     (confirm)
  670.   )
  671.  
  672.   (complete 74)
  673.  
  674.   (copyfiles
  675.     (prompt "Installing Tools...")
  676.     (help @copyfiles-help)
  677.     (source "PatchFiles/ViewStudio")
  678.     (dest ToolsDir)
  679.     (confirm)
  680.   )
  681.  )
  682. )
  683.  
  684. (If (IN WAS 2)
  685.  (
  686.  
  687.   (complete 75)
  688.  
  689.   (if (= default_lang 4)
  690.   (
  691.       (copyfiles
  692.           (prompt "Copying instruction...")
  693.           (help @copyfiles-help)
  694.           (source "FantasticDreamsCD:Instruction/")
  695.           (dest DocDir)
  696.           (infos)
  697.           (all)
  698.           (confirm)
  699.       )
  700.  
  701.   ))
  702.  
  703.   (if (= default_lang 2)
  704.    (
  705.       (copyfiles
  706.           (prompt "Kopiere Anleitung...")
  707.           (help @copyfiles-help)
  708.           (source "FantasticDreamsCD:Anleitung/" )
  709.           (dest DocDir)
  710.           (infos)
  711.           (all)
  712.           (confirm)
  713.       )
  714.    )
  715.   )
  716.  )
  717. )
  718.  
  719. (complete 85)
  720.  
  721. (copyfiles
  722.     (prompt "Installing Universal-Loader...")
  723.     (help @copyfiles-help)
  724.     (source "PatchFiles/UNIVERSAL")
  725.     (dest LoaderDir)
  726.     (confirm)
  727. )
  728.  
  729. (complete 90)
  730.  
  731. (copyfiles
  732.     (prompt "Installing Images...")
  733.     (help @copyfiles-help)
  734.     (source "FantasticDreamsCD:ImagesMain/")
  735.     (dest ImagesDir)
  736.     (all)
  737.     (confirm)
  738. )
  739.  
  740. (complete 97)
  741.  
  742. (copylib
  743.     (prompt UpDategraf)
  744.     (help @copylib-help)
  745.     (source "FantasticDreamsCD:libs/graffiti.library")
  746.     (dest "libs:")
  747.     (confirm)
  748. )
  749.  
  750. (complete 98)
  751.  
  752. (copylib
  753.     (prompt UpDatejpeg)
  754.     (help @copylib-help)
  755.     (source "FantasticDreamsCD:libs/jpeg2mov.library")
  756.     (dest "libs:")
  757.     (confirm)
  758. )
  759.  
  760. (complete 100)
  761.